home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 23 / AMIGAplus Sonderheft 23 (2000)(Falke)(DE)[!].iso / Tools / Packer / xad / Developer / Sources / clients / extheader.c next >
C/C++ Source or Header  |  1999-11-06  |  528b  |  24 lines

  1. /* Objectheader
  2.  
  3.     Name:        extheader.c
  4.     Version:    $VER: extheader.c 1.1 (13.06.1998)
  5.     Description:    C header for xad externals
  6.     Author:        SDI
  7.     Distribution:    PD
  8.  
  9.  1.0   13.06.98 : first version
  10. */
  11.  
  12. #include <libraries/xadmaster.h>
  13.  
  14. /* To make this a extern Object module it is necessary to force this
  15. structure to be the really first stuff in the file. */
  16.  
  17. extern UBYTE version[];
  18. extern struct xadClient FirstClient;
  19.  
  20. struct xadForeman ForeMan =
  21. { XADFOREMAN_SECURITY, XADFOREMAN_ID, XADFOREMAN_VERSION, 0, version,
  22. &FirstClient };
  23.  
  24.